home *** CD-ROM | disk | FTP | other *** search
- #############################################################################
- # Compass Sample Export Template
- # HTMLTreeFrame.tpl
- #############################################################################
-
- %AUTO_VIEW=N
-
- #############################################################################
- # TREE_CONTENTS
- #############################################################################
-
- {FOLDERS:TREE_CONTENTS}
- <!-- Item -->
- <DIV CLASS="styChild" ><A HREF="$TITLE_ID$.htm" TARGET="ListFrame">$TITLE$</A><br></DIV>
- {/FOLDERS}
-
- {F1:TREE_CONTENTS}
- {/F1}
-
- #############################################################################
- # CATEGORY_TREE
- #############################################################################
-
- {FOLDERS:CATEGORY_TREE}
- {/FOLDERS}
-
- {F1:CATEGORY_TREE}
- <!-- ==================================== -->
- <!-- Begin of Folder "Features" -->
- <TR>
- <!-- button image -->
- <TD ALIGN="right" VALIGN="top">
- <IMG SRC="minus.gif" ID="$TITLE_ID$" CLASS="styImgBtn" HSPACE='4' HEIGHT='9' WIDTH='9' ONCLICK="ToggleDisplay($TITLE_ID$, $TITLE_ID$_CONTENTS);">
- </TD>
-
- <!-- $TITLE$ -->
- <TD COLSPAN="2" style="padding-right:5;">
- <DIV CLASS="styParent">
- <A HREF="$TITLE_ID$.htm" TARGET="ListFrame">$TITLE$<br></div>
-
- <!-- Contents -->
- <DIV CLASS="styChildren" ID="$TITLE_ID$_CONTENTS" style="display:'';">
- $TREE_CONTENTS$
- </DIV>
- </td>
- </TR>
- <!-- End of Folder -->
-
- {/F1}
-
-
- #############################################################################
- # The main output file:
- # Suggested output file path: Compass\Output\TREEFRAME.HTM
- #
- # You will need the following three files
- # Output\plus.gif
- # Output\minus.gif
- # Output\Main.htm
- # and the right hand side frame (LISTFRAME.HTM).
- #############################################################################
-
- {MAIN:*.HTM}
- <!doctype html public "-//w3c//dtd html 3.2 final//en">
- <html>
- <head>
- <title>Compass $VERSION$ Template Sample - HTMLTreeFrame</title>
- <meta name="Generator" content="Compass $VERSION$">
- <meta name="Author" content="$USER$">
- <meta name="Keywords" content="compass, bookmark, favorite, $USER$">
- <meta name="Description" content="Compass $VERSION$ Template Sample - HTMLTreeFrame">
- </head>
-
- <style TYPE="text/css">
- BODY
- {
- font-family: Verdana, MS Sans Serif;
- background-color="#FFFFCC";
- }
- A:HOVER
- {
- color:"red";
- }
- IMG.styImgBtn
- {
- cursor: hand;
- }
- .styParent
- {
- font-size: 80%;
- font-style: normal;
- font-variant: normal;
- font-weight: bold;
- line-height: 90%;
- margin-top: 5px;
- padding-bottom: 2px
- }
- DIV.styChildren DIV
- {
- font-size: 70%;
- font-style: normal;
- font-variant: normal;
- font-weight: normal;
- line-height: 100%;
- padding-bottom: 4px
- }
- DIV.styChild
- {
- margin-top: 3px;
- margin-left: 8px;
- padding-bottom: 3px
- }
- </style>
-
- <script LANGUAGE="JavaScript"><!--
- function ToggleDisplay( oButton, oItems )
- {
- if( oItems.style.display == "none" )
- {
- oItems.style.display = "";
- oButton.src = "minus.gif";
- }
- else
- {
- oItems.style.display = "none";
- oButton.src = "plus.gif";
- }
- return false;
- }
- //--></script>
- </head>
-
-
- <body>
-
- <center><b>Categories</b></center>
-
- <br>
-
- <TABLE>
- $CATEGORY_TREE$
- </TABLE>
-
- </body>
-
- </html>
- {/MAIN}
-
- #############################################################################
-